home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 3 NO 7.st / VCR_ORG.ARC / DRAW_MOD.PAS next >
Encoding:
Pascal/Delphi Source File  |  1988-11-11  |  5.0 KB  |  225 lines

  1. {$M+}
  2. {$E+}
  3.  
  4. program Main_Module;
  5.  
  6. {$I A:GEMSUBS.PAS }
  7. {$I A:AUXSUBS.PAS }
  8.  
  9. Const
  10.      {$I B:VCR_Cnst.Pas }
  11.  
  12. Type
  13.      {$I B:VCR_Type.Pas }
  14.  
  15. Var
  16.      {$I B:VCR_Var.Pas }
  17.  
  18.  
  19.  procedure Paint_Frame( x, y, w, h, color, pattern : integer ) ;
  20.     External ;
  21.  
  22.  procedure Text_Box(X, Y, Z : integer ; S : string) ;
  23.     External ;
  24.  
  25.  procedure DateStr( Out_No : integer ; Var S : string );
  26.     External ;
  27.  
  28.  procedure Get_TapeNo;
  29.     External ;
  30.  
  31.  procedure Get_MovieRec( Letter : integer );
  32.     External ;
  33.  
  34.  
  35.  procedure Draw_Card(X, Y, Z : integer) ;
  36.  
  37.   var
  38.       c : char;
  39.  
  40.   begin
  41.     Paint_Frame(X + 6, Y * Resolution, 252 + $41 - Z,
  42.                 72 * Resolution + $41 - Z, White, 0);
  43.  
  44.     if Z <> $40 then       
  45.        begin
  46.          Paint_Frame(X + (Z - $40) * 8, (Y - 9) * Resolution,
  47.                     16, 10 * Resolution, White, 0);
  48.          if Z = $5B then
  49.             c := chr($2A)
  50.          else
  51.             c := chr(Z);
  52.          Draw_String(X + (Z - $3F) * 8 - 4, (Y - 1) * Resolution, c);
  53.        end;
  54.   end;
  55.  
  56.  
  57.  procedure Draw_Main;
  58.  
  59.   var
  60.      i : integer;
  61.      c : char;
  62.  
  63.   begin
  64.     Work_Rect(Wind_Handle[3],x0,y0,w0,h0);
  65.     Paint_Color(White);
  66.     Paint_Rect(0, 0, 640, 200 * Resolution);
  67.     Paint_Color(Black);
  68.     Paint_Style(4);
  69.     Paint_Rect(0, 0, 640, 200 * Resolution);
  70.     Paint_Style(1);
  71.     for i := -1 to 26 do
  72.         Draw_Card(130 - (i * 5), 32 + (i * 1), $5A - i);
  73.     for i := 0 to 26 do
  74.         if VCR_Inverse[i] then
  75.            begin
  76.              if i = 26 then
  77.                 c := chr($2A)
  78.              else
  79.                 c := chr($41 + i);
  80.              Text_Style($02);
  81.              Draw_String(342 - 13 * (25 - i), (56 - i) * Resolution, c);
  82.              Text_Style($00);
  83.            end;
  84.   end;
  85.  
  86.  
  87.  procedure Draw_Movie;
  88.  
  89.   var
  90.      i : integer;
  91.  
  92.   begin
  93.     Work_Rect(Wind_Handle[1], x0, y0, w0, h0);
  94.     Paint_Frame(x0, y0, w0, h0, White,1);
  95.     Paint_Frame(x0, y0, w0, h0, Black,6);
  96.  
  97.     Text_Box(x0 +  20, y0 +  4 * Resolution,  6, 'Tape #');
  98.     Text_Box(x0 + 192, y0 +  4 * Resolution,  5, 'Hi-Fi');
  99.     Text_Box(x0 + 320, y0 +  4 * Resolution,  6, 'Stereo');
  100.  
  101.     Text_Box(x0 + 60,  y0 + 16 * Resolution, 13, ' Movie Title ');
  102.     Text_Box(x0 + 364, y0 + 16 * Resolution, 5, 'Index');
  103.  
  104.     for i := 1 to 6 do
  105.         begin
  106.           Paint_Frame(x0 + 4, y0 + (16 + 12 * i) * Resolution,
  107.                       14, 10 * Resolution, White, 1);
  108.           Draw_String(x0 + 7, y0 + (24 + 12 * i) * Resolution,
  109.                       chr(i + $30));
  110.         end;
  111.  
  112.     for i := 1 to 15 do
  113.         Paint_Frame(x0 + XY_VCR[1,i] - 4, y0 + (XY_VCR[2,i] - 8) * Resolution,
  114.                     (XY_VCR[3,i] + 2) * 8, 10 * Resolution, White, 1);
  115.  
  116.     for i := 1 to 15 do
  117.         Draw_String(x0 + XY_VCR[1,i],y0 + XY_VCR[2,i] * Resolution,
  118.                     Input_String[i]);
  119.  
  120.   end;
  121.  
  122.  
  123.  procedure Draw_Names;
  124.  
  125.   var
  126.       i,
  127.       End_Name : integer;
  128.  
  129.    begin
  130.      Hide_Mouse;
  131.      Work_Rect(Wind_Handle[4], x0, y0, w0, h0);
  132.      Set_Clip(x0,y0,w0,h0);
  133.      Paint_Color(White);
  134.      Text_Color(Black);
  135.      Draw_Mode(1);
  136.  
  137.      Paint_Rect(x0, y0, w0, h0);
  138.  
  139.      End_Name := Name_Offset + 5;
  140.      if End_Name > Dsply_Name then
  141.         End_Name := Dsply_Name;
  142.  
  143.      for i := Name_Offset + 1 to End_Name do
  144.          Draw_String(x0 + 12, y0 + (9 * (i - Name_Offset)) * Resolution,
  145.                      VCR_Name[Output_Name[i]]);
  146.      Show_Mouse;
  147.    end;
  148.  
  149.  
  150.  procedure Draw_Numbers;
  151.  
  152.   var
  153.       i,
  154.       End_Tape      : integer ;
  155.       Output_String : String ;
  156.  
  157.    begin
  158.      Hide_Mouse;
  159.      Work_Rect(Wind_Handle[5], x0, y0, w0, h0);
  160.      Paint_Color(White);
  161.      Text_Color(Black);
  162.      Draw_Mode(1);
  163.  
  164.      Paint_Rect(x0, y0, w0, h0);
  165.  
  166.      End_Tape := Tape_Offset + 15;
  167.      if End_Tape > Dsply_Tape then
  168.         End_Tape := Dsply_Tape;
  169.  
  170.      for i := Tape_Offset + 1 to End_Tape do
  171.          begin
  172.            DateStr(VCR_Tape[0,Output_Tape[i]], Output_String);
  173.            Draw_String(x0 + 12, y0 + (9 * (i - Tape_Offset)) * Resolution,
  174.                        Output_String);
  175.          end;
  176.      Show_Mouse;
  177.    end;
  178.  
  179.  
  180.   procedure Select_Window(Wind_Number : integer);
  181.  
  182.     var
  183.         i : integer;
  184.  
  185.     begin
  186.       Set_Clip(x0, y0, w0, h0);
  187.       for i := 1 to 5 do
  188.           if Wind_Number = Wind_Handle[i] then
  189.              case i of
  190.                 1 : Draw_Movie;
  191.                 3 : Draw_Main;
  192.                 4 : Get_MovieRec(Letter);
  193.                 5 : Get_TapeNo;
  194.              end;
  195.     end;
  196.  
  197.  
  198.  procedure Do_Redraw;
  199.  
  200.   var
  201.      i : integer;
  202.  
  203.   begin
  204.     Begin_Update;
  205.     Hide_Mouse;
  206.  
  207.     With Gem_Result do
  208.     begin
  209.       First_Rect(msg[3], x0, y0, w0, h0);
  210.       while (w0 <> 0) OR (h0 <>0) do
  211.           begin
  212.             if Rect_Intersect(msg[4], msg[5], msg[6], msg[7],
  213.                               x0, y0, w0, h0) then
  214.                Select_Window(msg[3]);
  215.             Next_Rect(msg[3], x0, y0, w0, h0);
  216.           end;
  217.     end;
  218.     Prev_Module := -20;
  219.     Show_Mouse;
  220.     End_Update;
  221.   end;
  222.  
  223. BEGIN
  224. END.
  225.